home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / VISCAFE.BIN / VPOJAVA.DLL / SOURCE / APPLETFRAME < prev    next >
Encoding:
Text File  |  1997-06-19  |  539 b   |  38 lines

  1. /*
  2.     An extension of the java.awt.Frame class that can show an Applet
  3.  */
  4.  
  5. import java.awt.*;
  6. import java.applet.*;
  7.  
  8. public class AppletFrame extends symantec.itools.awt.AppletFrame
  9. {
  10.     public AppletFrame()
  11.     {
  12.         //{{INIT_CONTROLS
  13.         //}}
  14.  
  15.         //{{INIT_MENUS
  16.         //}}
  17.  
  18.         show();
  19.     }
  20.  
  21.     public static void main(String args[])
  22.     {
  23.         new AppletFrame().show();
  24.     }
  25.  
  26.     public boolean handleEvent(Event event)
  27.     {
  28.         return super.handleEvent(event);
  29.     }
  30.  
  31.     //{{DECLARE_CONTROLS
  32.     //}}
  33.  
  34.     //{{DECLARE_MENUS
  35.     //}}
  36.  
  37. }
  38.